home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso / handson / CPPBuild / STEP3 / UNIT1.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-06  |  893 b   |  26 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-managed Components
  13.     TButton *Add;
  14.     TButton *Remove;
  15.     TMemo *Memo1;
  16.     void __fastcall AddClick(TObject *Sender);
  17.     void __fastcall RemoveClick(TObject *Sender);
  18. private:    // User declarations
  19. public:        // User declarations
  20.     __fastcall TForm1(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern TForm1 *Form1;
  24. //---------------------------------------------------------------------------
  25. #endif
  26.